home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / edsspell / words.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-15  |  625b  |  38 lines

  1. unit Words;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, ExtCtrls, StdCtrls, Buttons;
  8.  
  9. type
  10.   TWordForm = class(TForm)
  11.     Label1: TLabel;
  12.     Label2: TLabel;
  13.     Bevel1: TBevel;
  14.     Bevel2: TBevel;
  15.     btnOk: TBitBtn;
  16.     lblWords: TLabel;
  17.     lblUniqueWords: TLabel;
  18.     procedure btnOkClick(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   WordForm: TWordForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31.  
  32. procedure TWordForm.btnOkClick(Sender: TObject);
  33. begin
  34.   Close;
  35. end;
  36.  
  37. end.
  38.